Estoy tratando de usar @testing-library/vue e importar el método de pantalla y ESLint informa el siguiente error: "screen not found in @testing-library/vue" .
// The render function doesn't error but screen yes import { render, screen } from '@testing-library/vue'; ¿Alguien se ha encontrado con este problema antes? Creo que se debe al hecho de que @testing-library/vue reexporta los métodos de @testing-library/dom , pero supuse que ESLint pudo detectarlo.
Agregué "@testing-library/vue" a mi matriz de types dentro de tsconfig.json y ahora funciona.